home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / security / xinetd / xlog.1.0.9 / slog.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-07  |  578 b   |  31 lines

  1. /*
  2.  * (c) Copyright 1992 by Panagiotis Tsirigotis
  3.  * All rights reserved.  The file named COPYRIGHT specifies the terms 
  4.  * and conditions for redistribution.
  5.  */
  6.  
  7.  
  8. /*
  9.  * $Id: slog.h,v 1.2 1992/10/25 21:26:13 panos Exp $
  10.  */
  11.  
  12.  
  13. struct syslog
  14. {
  15.     int facility ;
  16.     int default_level ;
  17. } ;
  18.  
  19.  
  20. struct syslog_parms
  21. {
  22.    int n_xlogs ;              /* # of xlogs using syslog */
  23.    int logopts ;              /* used at openlog */
  24.    int facility ;
  25.    char *ident ;              /* used at openlog */
  26.     int ident_is_malloced ;
  27. } ;
  28.  
  29. #define SYSLOG( xp )         ((struct syslog *)xp->data)
  30.  
  31.